home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / doc / cupsddk / examples / minimum.drv < prev   
Encoding:
Text File  |  2009-01-19  |  572 b   |  27 lines

  1. // Include standard font and media definitions
  2. #include <font.defs>
  3. #include <media.defs>
  4.  
  5. // List the fonts that are supported, in this case all standard
  6. // fonts...
  7. Font *
  8.  
  9. // Manufacturer, model name, and version
  10. Manufacturer "Foo"
  11. ModelName "FooJet 2000"
  12. Version 1.0
  13.  
  14. // Each filter provided by the driver...
  15. Filter application/vnd.cups-raster 100 rastertofoo
  16.  
  17. // Supported page sizes
  18. *MediaSize Letter
  19. MediaSize A4
  20.  
  21. // Supported resolutions
  22. *Resolution k 8 0 0 0 "600dpi/600 DPI"
  23.  
  24. // Specify the name of the PPD file we want to generate...
  25. PCFileName "foojet2k.ppd"
  26.  
  27.